@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

#up-arrow {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: gold;
    border-radius: 50%;
    display: none;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    color: black;
    cursor: pointer;
}

.text {
    color: white;
    font-size: 25px;
    line-height: 1.2;
    margin-top: 40px;
}

.yellow-text {
    color: #ffd900;
}

.ul-text {
    color: white;
    font-size: 25px;
    line-height: 1.2;
    margin-top: 40px;
    margin-left: 40px;
}

.text-title {
    color: white;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 40px;
}

.bg-image {
    width: 100%;
    height: 100vh;
    background-image: url(../img/mma-bg.jpg);
    background-size: cover;
    background-position: top center;
}

.menu {
    width: 100%;
    background-color: #ffd900;
    height: 100px;
    text-align: center;
}

.menu-link {
    color: #000000;
    font-size: 40px;
    line-height: 100px;
    padding: 0 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.black-bg {
    background-color: #000000;
}

.container {
    width: 1500px;
    margin: 0 auto;
}

.row {
    display: block;
}

.row::after {
    content: '';
    display: block;
    clear: both;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}

.blue {
    background-color: blue;
}

.w25 {
    float: left;
    width: 25%;
    padding: 50px;
}

.w75 {
    float: left;
    width: 75%;
    padding: 50px;
}

.w33 {
    float: left;
    width: 33.3333333%;
    padding: 50px;
}

.res-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.w50 {
    float: left;
    width: 50%;
    padding: 20px;
}

.page-title {
    text-align: center;
    font-size: 100px;
    font-weight: 400;
    margin-top: 40px;
    color: #ffd900;
}

.block {
    height: 300px;
    color: black;
    background-color: #ffd900;
    width: 100px;
    margin-top: 200px;
    padding:20px;
}

.fighter-card {
    text-align: center;
    border: 2px solid #ffd900;
    padding-bottom: 20px;
}

.fighter-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.fighter-name {
    color: white;
    font-size: 20px;
}


